home *** CD-ROM | disk | FTP | other *** search
/ Windows 6-Pak - Disc 4 / Windows 6-Pak (InfoMagic) (Disc 4) (1999).ISO / Text-Chat-Tools / EVAL.ZIP / OKserver / start < prev    next >
Encoding:
Text File  |  1998-12-27  |  478 b   |  14 lines

  1. #!/bin/csh 
  2. # Startup script for csh shell (in unix environments)
  3. # allowing server to use up to 220 sockets (for full version)
  4.  limit openfiles 220
  5. # ulimit -u 220 for sh shell
  6. #jre or java on java for java to start java virtual maschine
  7. #9999 is tcp port 
  8. # errors is file for standard output (where uncathed errors and exceptions are logged)
  9. # you can use nice to prioritize the process
  10. #nice jre OKserver 9999 >> errors &
  11.  nice java OKserver 9999 >> errors &
  12.  
  13.  
  14.